type runtime.mspan

124 uses

	runtime (current package)
		arena.go#L239: 	fullList *mspan
		arena.go#L242: 	active *mspan
		arena.go#L382: func (a *userArena) refill() *mspan {
		arena.go#L425: 	*mspan // Must represent a user arena chunk.
		arena.go#L449: func (s *mspan) userArenaNextFree(typ *_type, cap int) unsafe.Pointer {
		arena.go#L539: func userArenaHeapBitsSetSliceType(typ *_type, n int, ptr unsafe.Pointer, s *mspan) {
		arena.go#L553: func userArenaHeapBitsSetType(typ *_type, ptr unsafe.Pointer, s *mspan) {
		arena.go#L611: func (s *mspan) writeUserArenaHeapBits(addr uintptr) (h writeUserArenaHeapBits) {
		arena.go#L631: func (h writeUserArenaHeapBits) write(s *mspan, bits, valid uintptr) writeUserArenaHeapBits {
		arena.go#L662: func (h writeUserArenaHeapBits) pad(s *mspan, size uintptr) writeUserArenaHeapBits {
		arena.go#L676: func (h writeUserArenaHeapBits) flush(s *mspan, addr, size uintptr) {
		arena.go#L748: func newUserArenaChunk() (unsafe.Pointer, *mspan) {
		arena.go#L772: 	var span *mspan
		arena.go#L858: func (s *mspan) isUnusedUserArenaChunk() bool {
		arena.go#L867: func (s *mspan) setUserArenaChunkToFault() {
		arena.go#L948: func freeUserArenaChunk(s *mspan, x unsafe.Pointer) {
		arena.go#L1006: func (h *mheap) allocUserArenaChunk() *mspan {
		arena.go#L1007: 	var s *mspan
		malloc.go#L908: func nextFreeFast(s *mspan) gclinkptr {
		malloc.go#L935: func (c *mcache) nextFree(spc spanClass) (v gclinkptr, s *mspan, shouldhelpgc bool) {
		malloc.go#L1055: 	var span *mspan
		mbitmap.go#L154: func (span *mspan) typePointersOf(addr, size uintptr) typePointers {
		mbitmap.go#L171: func (span *mspan) typePointersOfUnchecked(addr uintptr) typePointers {
		mbitmap.go#L214: func (span *mspan) typePointersOfType(typ *abi.Type, addr uintptr) typePointers {
		mbitmap.go#L372: func (span *mspan) objBase(addr uintptr) uintptr {
		mbitmap.go#L542: func (s *mspan) initHeapBits(forceClear bool) {
		mbitmap.go#L563: func (span *mspan) heapBits() []uintptr {
		mbitmap.go#L601: func (span *mspan) heapBitsSmallForAddr(addr uintptr) uintptr {
		mbitmap.go#L641: func (span *mspan) writeHeapBitsSmall(x, dataSize uintptr, typ *_type) (scanSize uintptr) {
		mbitmap.go#L705: func heapSetType(x, dataSize uintptr, typ *_type, header **_type, span *mspan) (scanSize uintptr) {
		mbitmap.go#L727: 			var progSpan *mspan
		mbitmap.go#L782: func doubleCheckHeapPointers(x, dataSize uintptr, typ *_type, header **_type, span *mspan) {
		mbitmap.go#L839: func doubleCheckHeapPointersInterior(x, interior, size, dataSize uintptr, typ *_type, header **_type, span *mspan) {
		mbitmap.go#L917: func doubleCheckTypePointersOfType(s *mspan, typ *_type, addr, size uintptr) {
		mbitmap.go#L1037: func (s *mspan) allocBitsForIndex(allocBitIndex uintptr) markBits {
		mbitmap.go#L1046: func (s *mspan) refillAllocCache(whichByte uint16) {
		mbitmap.go#L1064: func (s *mspan) nextFreeIndex() uint16 {
		mbitmap.go#L1119: func (s *mspan) isFree(index uintptr) bool {
		mbitmap.go#L1135: func (s *mspan) divideByElemSize(n uintptr) uintptr {
		mbitmap.go#L1151: func (s *mspan) objIndex(p uintptr) uintptr {
		mbitmap.go#L1161: func (s *mspan) markBitsForIndex(objIndex uintptr) markBits {
		mbitmap.go#L1166: func (s *mspan) markBitsForBase() markBits {
		mbitmap.go#L1221: func badPointer(s *mspan, p, refBase, refOff uintptr) {
		mbitmap.go#L1274: func findObject(p, refBase, refOff uintptr) (base uintptr, s *mspan, objIndex uintptr) {
		mbitmap.go#L1415: func (s *mspan) countAlloc() int {
		mbitmap.go#L1679: func materializeGCProg(ptrdata uintptr, prog *byte) *mspan {
		mbitmap.go#L1688: func dematerializeGCProg(s *mspan) {
		mcache.go#L45: 	alloc [numSpanClasses]*mspan // spans to allocate from, indexed by spanClass
		mcache.go#L83: var emptymspan mspan
		mcache.go#L219: func (c *mcache) allocLarge(size uintptr, noscan bool) *mspan {
		mcentral.go#L81: func (c *mcentral) cacheSpan() *mspan {
		mcentral.go#L108: 	var s *mspan
		mcentral.go#L204: func (c *mcentral) uncacheSpan(s *mspan) {
		mcentral.go#L250: func (c *mcentral) grow() *mspan {
		mgcmark.go#L949: 		var s *mspan
		mgcmark.go#L1587: func greyobject(obj, base, off uintptr, span *mspan, gcw *gcWork, objIndex uintptr) {
		mgcmark.go#L1693: func gcmarknewobject(span *mspan, obj uintptr) {
		mgcsweep.go#L97: func (h *mheap) nextSpanForSweep() *mspan {
		mgcsweep.go#L102: 		var s *mspan
		mgcsweep.go#L330: 	*mspan
		mgcsweep.go#L335: func (l *sweepLocker) tryAcquire(s *mspan) (sweepLocked, bool) {
		mgcsweep.go#L458: func (s *mspan) ensureSwept() {
		mgcsweep.go#L856: func (s *mspan) reportZombies() {
		mgcwork.go#L366: 		var s *mspan
		mheap.go#L83: 	allspans []*mspan // all spans out there
		mheap.go#L254: 	spans [pagesPerArena]*mspan
		mheap.go#L391: 	first *mspan // first span in list, or nil if none
		mheap.go#L392: 	last  *mspan // last span in list, or nil if none
		mheap.go#L395: type mspan struct {
		mheap.go#L397: 	next *mspan     // next span in list, or nil if none
		mheap.go#L398: 	prev *mspan     // previous span in list, or nil if none
		mheap.go#L491: func (s *mspan) base() uintptr {
		mheap.go#L495: func (s *mspan) layout() (size, n, total uintptr) {
		mheap.go#L519: 	s := (*mspan)(p)
		mheap.go#L528: 		var new []*mspan
		mheap.go#L669: func spanOf(p uintptr) *mspan {
		mheap.go#L704: func spanOfUnchecked(p uintptr) *mspan {
		mheap.go#L715: func spanOfHeap(p uintptr) *mspan {
		mheap.go#L743: 	h.spanalloc.init(unsafe.Sizeof(mspan{}), recordspan, unsafe.Pointer(h), &memstats.mspan_sys)
		mheap.go#L951: func (h *mheap) alloc(npages uintptr, spanclass spanClass) *mspan {
		mheap.go#L955: 	var s *mspan
		mheap.go#L984: func (h *mheap) allocManual(npages uintptr, typ spanAllocType) *mspan {
		mheap.go#L993: func (h *mheap) setSpans(base, npage uintptr, s *mspan) {
		mheap.go#L1082: func (h *mheap) tryAllocMSpan() *mspan {
		mheap.go#L1105: func (h *mheap) allocMSpanLocked() *mspan {
		mheap.go#L1111: 		return (*mspan)(h.spanalloc.alloc())
		mheap.go#L1117: 			pp.mspancache.buf[i] = (*mspan)(h.spanalloc.alloc())
		mheap.go#L1137: func (h *mheap) freeMSpanLocked(s *mspan) {
		mheap.go#L1169: func (h *mheap) allocSpan(npages uintptr, typ spanAllocType, spanclass spanClass) (s *mspan) {
		mheap.go#L1382: func (h *mheap) initSpan(s *mspan, typ spanAllocType, spanclass spanClass, base, npages uintptr) {
		mheap.go#L1555: func (h *mheap) freeSpan(s *mspan) {
		mheap.go#L1595: func (h *mheap) freeManual(s *mspan, typ spanAllocType) {
		mheap.go#L1611: func (h *mheap) freeSpanLocked(s *mspan, typ spanAllocType) {
		mheap.go#L1697: func (span *mspan) init(base uintptr, npages uintptr) {
		mheap.go#L1719: func (span *mspan) inList() bool {
		mheap.go#L1729: func (list *mSpanList) remove(span *mspan) {
		mheap.go#L1754: func (list *mSpanList) insert(span *mspan) {
		mheap.go#L1772: func (list *mSpanList) insertBack(span *mspan) {
		mheap.go#L1837: func spanHasSpecials(s *mspan) {
		mheap.go#L1845: func spanHasNoSpecials(s *mspan) {
		mheap.go#L1927: func (span *mspan) specialFindSplicePoint(offset uintptr, kind byte) (**special, bool) {
		mheap.go#L2279: func newSpecialsIter(span *mspan) specialsIter {
		mspanset.go#L74: func (b *spanSet) push(s *mspan) {
		mspanset.go#L141: func (b *spanSet) pop() *mspan {
		mspanset.go#L397: func (p *atomicMSpanPointer) Load() *mspan {
		mspanset.go#L398: 	return (*mspan)(p.p.Load())
		mspanset.go#L402: func (p *atomicMSpanPointer) StoreNoWB(s *mspan) {
		os_nonopenbsd.go#L11: func osStackAlloc(s *mspan) {
		os_nonopenbsd.go#L16: func osStackFree(s *mspan) {
		pinner.go#L270: func (s *mspan) pinnerBitSize() uintptr {
		pinner.go#L277: func (s *mspan) newPinnerBits() *pinnerBits {
		pinner.go#L284: func (s *mspan) getPinnerBits() *pinnerBits {
		pinner.go#L288: func (s *mspan) setPinnerBits(p *pinnerBits) {
		pinner.go#L295: func (s *mspan) refreshPinnerBits() {
		pinner.go#L326: func (span *mspan) incPinCounter(offset uintptr) {
		pinner.go#L347: func (span *mspan) decPinCounter(offset uintptr) bool {
		runtime2.go#L704: 		buf [128]*mspan
		stack.go#L392: 		var s *mspan
		stack.go#L727: 			var s *mspan
		traceallocfree.go#L83: func traceSpanTypeAndClass(s *mspan) traceArg {
		traceallocfree.go#L91: func (tl traceLocker) SpanExists(s *mspan) {
		traceallocfree.go#L96: func (tl traceLocker) SpanAlloc(s *mspan) {
		traceallocfree.go#L101: func (tl traceLocker) SpanFree(s *mspan) {
		traceallocfree.go#L106: func traceSpanID(s *mspan) traceArg {